home *** CD-ROM | disk | FTP | other *** search
- /* Map architectures to user friendly strings
- * The key should either be an architecture name, such as "m68k",
- * an architecture number, like "12", if the name isn't known, or
- * the string "Unknown CPU" as a catch-all. The "Unknown CPU" value
- * should include a %s to be replaced with the actual architecture's
- * name or number. Here are some examples:
- *
- * "i386" = "Intel Processors";
- * "12" = "ARM";
- * "Unknown CPU" = "CPU #%s";
- *
- * There is also an "old" string that is used to describe old
- * packages where we don't know what kind of contents it has.
- */
-
- "-1" = "Tous les ordinateurs"; /* To be removed when "any" goes into libc */
- "any" = "Tous les ordinateurs";
- "m68k" = "Ordinateurs NeXT";
- "i386" = "Ordinateurs basés sur Intel";
-
- /* Description for old pre-3.1 packages */
- "old" = "(Inconnu)";
-